type
   flavortype = (chocolate,
vanilla);
var
   flavor: flavortype;
typedef enum flavortype
{chocolate, vanilla};
flavortype flavor;
OR
enum flavortype {chocolate,
vanilla};
enum flavortype flavor;
Rectangle: Click to edit Master text styles
Second level
Third level
Fourth level
Fifth level